runtime.stackmap.n (field)
13 uses
runtime (current package)
heapdump.go#L273: if stkmap != nil && stkmap.n > 0 {
heapdump.go#L312: } else if stkmap.n < 0 {
heapdump.go#L314: size := uintptr(-stkmap.n)
heapdump.go#L319: } else if stkmap.n > 0 {
stkframe.go#L193: if stkmap == nil || stkmap.n <= 0 {
stkframe.go#L199: if stackid < 0 || stackid >= stkmap.n {
stkframe.go#L201: print("runtime: pcdata is ", stackid, " and ", stkmap.n, " locals stack map entries for ", funcname(f), " (targetpc=", hex(targetpc), ")\n")
stkframe.go#L206: print(" locals ", stackid, "/", stkmap.n, " ", locals.n, " words ", locals.bytedata, "\n")
stkframe.go#L220: if stackmap == nil || stackmap.n <= 0 {
stkframe.go#L224: if pcdata < 0 || pcdata >= stackmap.n {
stkframe.go#L226: print("runtime: pcdata is ", pcdata, " and ", stackmap.n, " args stack map entries for ", funcname(f), " (targetpc=", hex(targetpc), ")\n")
symtab.go#L1111: n int32 // number of bitmaps
symtab.go#L1121: if stackDebug > 0 && (n < 0 || n >= stkmap.n) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |